home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / comm / net / AmiMUD.lha / AmiMUD / rexx / savebid.amud < prev   
Text File  |  1997-03-08  |  603b  |  32 lines

  1. /* Medievia script to save the bidding results to a file 
  2.  * launch it ONE time from shell or from AmiMUD. It will save
  3.  * all the identifications to the file name in the variable savefile.
  4.  * This script have to be used in conjunction with the following trigger:
  5.  *
  6.  * trigger=min bid is
  7.  * bid ?\n
  8.  *
  9.  */
  10.  
  11. savefile=dh1:objects
  12.  
  13. address 'AmiMUD.1'
  14.  
  15. do forever
  16.     'am_log 10 LOGS WAITFOR "divination"'
  17.  
  18.     open( 'temp',savefile,'A')
  19.  
  20.     ok=0
  21.  
  22.     do i=0 to 9
  23.         if pos('br>',LOGS.i)>0 then do
  24.             ok=1
  25.             writeln('temp',"--------------------")
  26.         end
  27.         if ok=0    then writeln('temp',LOGS.i)
  28.     end
  29.  
  30.     close ('temp')
  31. end
  32.